ae6e400bce766cb851da4c526ca95a991e0cd3bc,extensions/twl/gdx-twl/src/com/badlogic/gdx/twl/TWL.java,TWL,touchDown,#number#number#number#,149
Before Change
}
public boolean touchDown (int x, int y, int pointer) {
return gui.handleMouse(x, y, pointer, true);
}
public boolean touchUp (int x, int y, int pointer) {
After Change
if (!mouseDown) lastPressConsumed = false; // Only the first button down counts.
mouseDown = true;
if (ignoreMouse) return false;
boolean handled = gui.handleMouse(x, y, pointer, true);
if (handled) lastPressConsumed = true;
return handled;
}
public boolean touchUp (int x, int y, int pointer) {